home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Modules / BackSpaceModules / Source / MazeView / RandomIntPicker.h < prev    next >
Text File  |  1994-01-09  |  173b  |  16 lines

  1. #import <appkit/appkit.h>
  2.  
  3. @interface RandomIntPicker:Object
  4. {
  5.     int count;
  6.     int pickedInt;
  7. }
  8.  
  9. - init;
  10. - reset;
  11. - (int) choice;
  12. - (int) count;
  13. - insert:(int)num;
  14.  
  15. @end
  16.